In [343]:
from SPARQLWrapper import SPARQLWrapper, JSON
import time, numpy as n, networkx as x, rdflib as r
In [336]:
PREFIX="""PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ops: <http://purl.org/socialparticipation/ops#>
PREFIX opa: <http://purl.org/socialparticipation/opa#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX dct: <http://purl.org/dc/terms/>
PREFIX dcty: <http://purl.org/dc/dcmitype/>
PREFIX tsioc: <http://rdfs.org/sioc/types#>
PREFIX sioc: <http://rdfs.org/sioc/ns#>
PREFIX schema: <http://schema.org/>
PREFIX aa: <http://purl.org/socialparticipation/aa/>"""
In [56]:
NOW=time.time()
q="""SELECT ?aname
WHERE {
?a foaf:name ?aname .
}"""
sparql = SPARQLWrapper("http://localhost:82/participa/query")
# para acesso remoto:
#sparql = SPARQLWrapper("http://200.144.255.210:8082/participabr/query")
sparql.setQuery(PREFIX+q)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
print("%.2f segundos para puxar todos os nomes do Participa.br"%
(time.time()-NOW,))
0.34 segundos para puxar todos os nomes do Participa.br
In [57]:
nomes=[i["aname"]["value"] for i in results["results"]["bindings"]]
nomes[:5]
Out[57]:
[u'Sarah Costa Schmidt',
u'Geraldo Cotinguiba',
u'Adriana Veloso Meireles',
u'Adalcira Santos Bezerra',
u'SiPas-DF']
In [157]:
NOW=time.time()
q="""SELECT ?aname
WHERE {
?a foaf:nick ?aname .
}"""
# para acesso remoto:
#sparql = SPARQLWrapper("http://200.144.255.210:8082/aa/sparql")
sparql2 = SPARQLWrapper("http://localhost:82/aa/sparql")
sparql2.setQuery(PREFIX+q)
sparql2.setReturnFormat(JSON)
results = sparql2.query().convert()
print("%.2f segundos para puxar todos os nicks do aa"%
(time.time()-NOW,))
0.02 segundos para puxar todos os nicks do aa
In [158]:
nicks=[i["aname"]["value"] for i in results["results"]["bindings"]]
nicks[:5]
Out[158]:
[u'kamiarc',
u'zAoEO3oAz',
u'organismo@gmail.com/gmail.90B01A72',
u'tatoman',
u'fdeSanca']
In [159]:
import random as ra
for i in zip(ra.sample(nicks,25), ra.sample(nomes,25)): print i[0], "===", i[1]
doceafagonanuca === Antonio de Assis
presto.correa@gmail.com/android_talk9bbb29508 === Francisco Gilson Lucena da Silva
blober === Ivânia Fabíola de Souza
guilherme.rk@gmail.com/8E24EAB9 === Joelma de Lima Gonçalves
Penalva === Unidade Básica de Saúde Boracea
DaneoShiga === Marcelo Horacio Fortino
__YupanaKernel__ === Marcelo Azevedo
paulordbm === Aline de Sá Souza
hybrid_ === Rogers Silva Garcez das Neves
v1z__ === Lourival Almeida
Flecha === Marina Gandra Camargo de Barros Oliveira
gcravista@gmail.com/gmail.9404F244 === Ercílio Langa
angelina_ === lesandro
barraponto@gmail.com/gmail.B4BE8C17 === Joanes Manoel Vieira
humannoise_ === Universidade de Brasília (UnB)
fran_paizao === vanessa aparecida pultrini de oliveira
sephiohff8@gmail.com/gmail.905F831B === ezequiel barroso nunes
Fefo === Paulo Henrique de Lima Santana
caioc2 === Luziana Carvalho de Albuquerque Maranhão
monod === Eduardo Santarelo Lucas
anonymous === Oona Caldeira Brant Monteiro de Castro
doceafagonanuca === Angel
cardinot === Napoleão Pires dos Santos
b1O83R === Adriana Veloso Meireles
________________ === joelma carvalho dos santos
In [161]:
NOW=time.time()
q="""SELECT DISTINCT ?aname ?asession ?acreated
WHERE {
?foo a aa:Shout .
?foo aa:user ?aname .
?foo aa:session ?asession .
?foo aa:created ?acreated
}"""
# para acesso remoto:
#sparql = SPARQLWrapper("http://200.144.255.210:8082/aa/sparql")
sparql2 = SPARQLWrapper("http://localhost:82/aa/sparql")
sparql2.setQuery(PREFIX+q)
sparql2.setReturnFormat(JSON)
results = sparql2.query().convert()
print("%.2f segundos para puxar todas as infos do aa"%
(time.time()-NOW,))
8.07 segundos para puxar todas as infos do aa
In [85]:
r_=[(i["aname"]["value"].split("#")[-1],"sessao: "+i["asession"]["value"].split("#")[-1]) for i in results["results"]["bindings"]]
In [162]:
print(u"são: %i sessões. As últimas 10 sessões são: "%(len(r_),))
for i in r_[-10:]: print(u"usuário: %s, sessão: %s"%i)
são: 35382 sessões. As últimas 10 sessões são:
usuário: Ak1n, sessão: sessao: 718
usuário: Flecha, sessão: sessao: 1223
usuário: Ak1n, sessão: sessao: 771
usuário: Ak1n, sessão: sessao: 843
usuário: DaneoShiga, sessão: sessao: 813
usuário: DaneoShiga, sessão: sessao: 764
usuário: Penalva, sessão: sessao: 1104
usuário: kamiarc, sessão: sessao: 1116
usuário: Ak1n, sessão: sessao: 1276
usuário: o0o0o, sessão: sessao: 1531
In [163]:
NOW=time.time()
q="""SELECT ?msg ?video ?acreated ?nick ?smsg ?score
WHERE {
?evt a dcty:Event .
OPTIONAL { ?evt aa:shoutMessage ?msg . }
OPTIONAL { ?evt aa:checkMessage ?smsg . }
OPTIONAL { ?evt aa:score ?score . }
OPTIONAL { ?evt foaf:maker ?user . ?user a ops:Participant . ?user foaf:nick ?nick }
OPTIONAL { ?evt schema:video ?video . }
OPTIONAL { ?evt schema:video ?video . }
?evt dct:created ?acreated
}"""
# para acesso remoto:
#sparql = SPARQLWrapper("http://200.144.255.210:8082/aa/sparql")
#sparql2 = SPARQLWrapper("http://localhost:82/aa/sparql")
sparql2.setQuery(PREFIX+q)
sparql2.setReturnFormat(JSON)
results = sparql2.query().convert()
print("%.2f segundos para puxar td"%
(time.time()-NOW,))
17.81 segundos para puxar td
In [164]:
results.keys()
Out[164]:
[u'head', u'results']
In [165]:
print(u"são ao todo %i eventos no AA"%(len(results["results"]["bindings"]),))
são ao todo 122987 eventos no AA
In [166]:
res_=results["results"]["bindings"]
In [167]:
res_[0].keys()
Out[167]:
[u'msg', u'nick', u'acreated']
In [168]:
print "são %s shouts de AA, com mensagens de texto"%(len(filter(lambda x: "msg" in x.keys(), res_)),)
são 115654 shouts de AA, com mensagens de texto
In [169]:
print "são %s sessoes de AA com mensagens de video"%(len(filter(lambda x: "video" in x.keys(), res_)),)
são 315 sessoes de AA com mensagens de video
In [178]:
for i in filter(lambda x: "smsg" in x.keys() and "video" in x.keys() and "score" in x.keys(), res_)[83:86]:
print("Screencast: %s,\n data: %s,\n msg: %s,\n score: %s\n"%(i["video"]["value"],i["acreated"]["value"],i["smsg"]["value"],i["score"]["value"]))
Screencast: http://vimeo.com/28533894,
data: 2011-09-02 21:24:42,
msg: Classifiquei como boa pelo screencast, pq aqui aparecem muitos timeslots perdidos. Não sei se é erro do AA isso.,
score: 3
Screencast: http://vimeo.com/27211210,
data: 2011-08-02 14:01:59,
msg: Timeslot perdido =(,
score: 2
Screencast: http://vimeo.com/32708658,
data: 2011-11-10 18:30:14,
msg: paginação de páginas? hehehe,
score: 3
In [337]:
import string, networkx as x, nltk as k
URL_ENDPOINT="http://localhost:82/"
URL_ENDPOINT_=URL_ENDPOINT+"participa/query"
EXCLUDE=set(string.punctuation+u'\u201c'+u'\u2018'+u'\u201d'+u'\u2022'+u'\u2013')
extraw=[u"à",u"é",u"não",u"ser",u"são",u"já",u"sobre",u"também",u"nao","in","pra","eh"]
STOPWORDS=set(k.corpus.stopwords.words('portuguese')+extraw)
PREFIX="""PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ops: <http://purl.org/socialparticipation/ops#>
PREFIX opa: <http://purl.org/socialparticipation/opa#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/terms/>
PREFIX tsioc: <http://rdfs.org/sioc/types#>
PREFIX sioc: <http://rdfs.org/sioc/ns#>
PREFIX schema: <http://schema.org/>
PREFIX aa: <http://purl.org/socialparticipation/aa/>"""
stemmer = k.stem.RSLPStemmer()
In [225]:
q="SELECT ?comentario ?titulo ?texto WHERE \
{?comentario dc:type tsioc:Comment.\
OPTIONAL {?comentario dc:title ?titulo . }\
OPTIONAL {?comentario schema:text ?texto .}}"
sparql=SPARQLWrapper(URL_ENDPOINT_)
sparql.setQuery(PREFIX+q)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
msgs_=results["results"]["bindings"]
msgs=[mm for mm in msgs_ if ("titulo" not in mm.keys()) or
(("teste de stress" not in mm["titulo"]["value"].lower())
and ("comunidade de desenvolvedores e nesse caso, quanto mais"
not in mm["texto"]["value"].lower()))]
palavras=string.join([i["texto"]["value"].lower() for i in msgs])
palavras = ''.join(ch for ch in palavras if ch not in EXCLUDE)
#palavras = ''.join(ch for ch in palavras if ch not in EXCLUDE).encode('utf-8')
palavras_=palavras.split()
#palavras__=[stemmer.stem(pp) for pp in palavras_ if pp not in STOPWORDS]
palavras__=[pp for pp in palavras_ if pp not in STOPWORDS]
fdist_=k.FreqDist(palavras__)
# escolhendo as 400 palavras mais incidentes para referência
palavras_escolhidas=fdist_.keys()[:400]
__builtin__.palavras_escolhidas=palavras_escolhidas
__builtin__.fdist_=fdist_
In [303]:
res__=[]
for rr in res_:
if "msg" in rr.keys():
if rr["msg"]["value"] not in (u"notify",u"TIMESLOT PERDIDO",u"start",u"stop",u"push"):
res__.append(rr["msg"]["value"].replace("shout ","").replace("alert ","").replace("emails","email").replace("fazendo","fazer").replace(" p ","").replace("the ","").replace("and ","").replace("vendo ","ver").replace("indo ","vou").replace(" q ","").replace(" to ","").replace("on","").replace("esu","").replace("paper","artigo"))
In [304]:
res__[2200:2210]
Out[304]:
[u'resolverproblemas na versu00e3o de teste',
u'feito arq de cf completo, voupara testes',
u'fazer commits',
u'SIGLA: TGL eh The Green Light',
u'fiz vu00e1rios testes',
u'Lendo e-mails',
u'revising artigo',
u'git commit in /Users/rfabbri/d/pyth: initial test case',
u'trabalhando no ExtratoForm para restringir projetos a partir de cta',
u'+ifsc voltando para o ag']
In [313]:
palavras2=string.join([i.lower() for i in res__])
palavras2 = ''.join(ch for ch in palavras2 if ch not in EXCLUDE).replace("usersrfabbrilibnotastodos","")
#palavras = ''.join(ch for ch in palavras if ch not in EXCLUDE).encode('utf-8')
palavras2_=palavras2.split()
#palavras__=[stemmer.stem(pp) for pp in palavras_ if pp not in STOPWORDS]
palavras2__=[pp for pp in palavras2_ if pp not in STOPWORDS]
fdist2_=k.FreqDist(palavras2__)
# escolhendo as 400 palavras mais incidentes para referência
palavras_escolhidas2=fdist2_.keys()[:400]
__builtin__.palavras_escolhidas2=palavras_escolhidas2
__builtin__.fdist2_=fdist2_
In [317]:
from tabulate import tabulate
In [330]:
headers=["ranking","Participa","AA"]
table=[]
for i in xrange(20):
foo=palavras_escolhidas[i]+" => "+str(fdist_[palavras_escolhidas[i]])
bar=palavras_escolhidas2[i]+" => "+str(fdist2_[palavras_escolhidas2[i]])
table.append([i+1,foo,bar])
In [331]:
print tabulate(table,headers)
ranking Participa AA
--------- ------------------- -----------------
1 participação => 717 git => 2052
2 social => 548 commit => 1985
3 sociedade => 526 fazer => 1612
4 governo => 367 ainda => 1171
5 forma => 337 agora => 1066
6 políticas => 327 tentando => 981
7 públicas => 310 aa => 978
8 brasil => 302 vou => 920
9 nacional => 266 lendo => 835
10 todos => 258 email => 789
11 educação => 251 artigo => 709
12 política => 249 scilab => 568
13 deve => 232 ver => 566
14 civil => 231 terminando => 461
15 proposta => 225 wiki => 419
16 acesso => 224 dando => 388
17 federal => 223 pd => 388
18 país => 222 sip => 374
19 direito => 218 testando => 348
20 pode => 218 pouco => 345
In [358]:
NOW=time.time()
#nicks=["prestoppc"]
#nicks=["prestoppc","v1z"]
aa = r.Namespace("http://purl.org/socialparticipation/aa/")
aa.User+"#ggdo"
nicks=["prestoppc","prestoppc_mob"]
q="""SELECT DISTINCT ?msg
WHERE {
?foo a aa:Shout .
?foo aa:shoutMessage ?msg .
?foo aa:user ?auser .
?auser aa:nick "%s" .
?foo aa:created ?acreated
}"""%(r.Literal("prestoppc"),)
# para acesso remoto:
#sparql = SPARQLWrapper("http://200.144.255.210:8082/aa/sparql")
sparql2 = SPARQLWrapper("http://localhost:82/aa/sparql")
sparql2.setQuery(PREFIX+q)
sparql2.setReturnFormat(JSON)
results = sparql2.query().convert()
print("%.2f segundos para puxar todas as infos do aa"%
(time.time()-NOW,))
29.15 segundos para puxar todas as infos do aa
In [359]:
results
Out[359]:
{u'head': {u'vars': [u'msg']},
u'results': {u'bindings': [{u'msg': {u'type': u'literal',
u'value': u'TIMESLOT PERDIDO'}},
{u'msg': {u'type': u'literal', u'value': u'shout iniciando o pingo morto'}},
{u'msg': {u'type': u'literal',
u'value': u'shout grava\xc3\xa7\xc3\xa3o das \xc3\xbaltimas cenas do clipe Calo da Malbec agendado para s\xc3\xa1bado, 10 de novembro. Email enviado para a equipe confirmando a grava\xc3\xa7\xc3\xa3o #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout foto do chart do dc adicionado ao forum pp'}},
{u'msg': {u'type': u'literal', u'value': u'shout trollando a cibeleborg'}},
{u'msg': {u'type': u'literal',
u'value': u'algo aconteceu no github, nao consigo criar milestone 0.15.0'}},
{u'msg': {u'type': u'literal',
u'value': u'sem orgulho, precisarei utilizar aircrack-ng'}},
{u'msg': {u'type': u'literal',
u'value': u'commview nao liberar o botao play pra capturar pacotes'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manjaro e pliskin v\xc3\xa3o escrever o roteiro'}},
{u'msg': {u'type': u'literal', u'value': u'shout lendo pAAinel'}},
{u'msg': {u'type': u'literal', u'value': u'shout indo pro escritorio'}},
{u'msg': {u'type': u'literal',
u'value': u'shout researching software to create sprites for pet and simbá.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout cenario nublado e noite prontos. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversando com manjaro e mancha sobre paainel'}},
{u'msg': {u'type': u'literal',
u'value': u'shout indo para o aeroporto ver o porco e jow'}},
{u'msg': {u'type': u'literal',
u'value': u'shout alguem manja de worpress php pra dar um jeito nesse meu banner que nao aparece a imagem? http://www.pulapirata.com/'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mancha editando invern sessions'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reuniao com a luneta feita.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout lendo roteiro do manjaro.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout botao pingo bebe doente concluido. Fazendo upload no forum pp.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout rpg de mesa 11 concluida'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando subotoes para disciplina (bebe)'}},
{u'msg': {u'type': u'literal',
u'value': u'shout agenda de sabado preparada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mic condenser configurado'}},
{u'msg': {u'type': u'literal', u'value': u'shout fechando por hj'}},
{u'msg': {u'type': u'literal', u'value': u'shout emails respondidos'}},
{u'msg': {u'type': u'literal',
u'value': u'shout desde hoje a tarde o pc est\xc3\xa1 sem som. iniciando revisao na maquina.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout adicionado novas imagens nos itens 0.1.0 e 0.3.0 no wiki pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout forum pp doodle carnival atualizado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo animacao do pingo bebe dormindo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout desenhos finalizados do tfg da fernanda'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ainda não consegui exportar o .gif animado, somente o png que coloca as imagens lado a lado. 16 x 16 pixels. http://www.pulapirata.com/wp-content/uploads/2012/06/Pingo.png'}},
{u'msg': {u'type': u'literal',
u'value': u'shout desisti da cesta. nao esta sainda'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criada a parte de Art no wiki Pet e adicionada as tabelas A e C em PDF para download. v1z_ : http://wiki.nosdigitais.teia.org.br/Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout wiki do pet atualizada. adicionado anima do Pingo sujo e do Pingo muito sujo. Na vers\xc3\xa3o 0.6.1'}},
{u'msg': {u'type': u'literal',
u'value': u'vendo git, checando greenlight e emails'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tirinha de amanha desenhada e pintada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manjaro está fazendo estudos de traço para Douglas de search and destroy'}},
{u'msg': {u'type': u'literal',
u'value': u'shout explicando pAAinel ao gonzo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout lendo projeto de pesquisa playn/pet do v1z. mto massa!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout boneco de massinha ciclope feito toscamente conclu\xc3\xaddo. Tamanho m\xc3\xa9dio. #ppc'}},
{u'msg': {u'type': u'literal', u'value': u'shout vetorizando RPG de mesa'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando recorte dos bot\xc3\xb5es em melhor resolu\xc3\xa7ao'}},
{u'msg': {u'type': u'literal', u'value': u'shout frame 75'}},
{u'msg': {u'type': u'literal',
u'value': u'shout algumas trilhas est\xc3\xa3o com volume alto demais. *checar volume dos 3 trechos CS.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.13.4 adicionados ao Wiki Pet http://wiki.nosdigitais.teia.org.br/Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tickets comprado p 28mar'}},
{u'msg': {u'type': u'literal',
u'value': u'shout instalando celtx para roteiro.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout instalando wacom bamboo no note'}},
{u'msg': {u'type': u'literal',
u'value': u'enviado alguns pdfs por email UE'}},
{u'msg': {u'type': u'literal', u'value': u'shout prioridades definidas'}},
{u'msg': {u'type': u'literal',
u'value': u'shout convite enviado ao v1z sobre proximo tema de ppcast'}},
{u'msg': {u'type': u'literal',
u'value': u'shout grava\xc3\xa7ao cancelada, reagendado para amanha'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pesquisando tutoriais para pixel art'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z, \xc3\xa9 poss\xc3\xadvel configurar uma tela filtrando certos usu\xc3\xa1rios? criar um grupo de usuarios para filtrar somente as atividades deles?'}},
{u'msg': {u'type': u'literal',
u'value': u'shout montando or\xc3\xa7amento RF'}},
{u'msg': {u'type': u'literal',
u'value': u'shout olhando blogs pra referencia'}},
{u'msg': {u'type': u'literal',
u'value': u'shout elmanchez passando nanquim na hq'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mandou o link pro hybrid e v1z do Clipe Calo da banda Malbec que foi criado e produzido pelo PulaPirata. https://www.youtube.com/watch?v=NeIco_G2noI'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z__ nao consigo editar o links com o screencast sobre a tabela de modificadores de status e atributos: http://www.youtube.com/watch?v=vjMHaPJmO6I&feature=youtu.be . Tem como atualizar, por favor quando tiver um tempo?'}},
{u'msg': {u'type': u'literal', u'value': u'shout projeto sol europeu,'}},
{u'msg': {u'type': u'literal',
u'value': u'shout retornando ao guia de wd. ed75'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tpills com especial de 2013 garantido para dia 20; kbsa e porco tb com 2 resenhas cada,'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pesquisando cenários isométricos para o Projeto Simbá.'}},
{u'msg': {u'type': u'literal',
u'value': u'indo p treinamento. Aulas pesadas.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fu\xc3\xa7ando no magix edit pro. editando ppcast 020 com ele. aprendendo comandos. Efeitos n\xc3\xa3o vem com o software.'}},
{u'msg': {u'type': u'literal', u'value': u'shout mancha iniciando rindu'}},
{u'msg': {u'type': u'literal',
u'value': u'shout primeiro .gif do pingo, personagem do pet foi feito no Sprite Maker Android. Dando erro na hora de compartilhar por email. Perdendo cores e animação.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tirinha feita, falta digitalizar e colorir'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ppcast 020 zumbis e walking dead parte II est\xc3\xa1 no ar. e sendo divulgado.'}},
{u'msg': {u'type': u'literal',
u'value': u'vendo avlab6 enviado pelo hybrid'}},
{u'msg': {u'type': u'literal',
u'value': u'shout 104 - Como acessar / configurar seu e-mail inserido no manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manual de como postar no manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criado o forum para doodle carnival no pp forum.'}},
{u'msg': {u'type': u'literal', u'value': u'shout referencias stop motion'}},
{u'msg': {u'type': u'literal',
u'value': u'shout continuando lazer (bebe)'}},
{u'msg': {u'type': u'literal', u'value': u'shout pausa pra witcher 2.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout imagens adicionadas ao t\xc3\xb3pico do forum manual v1z hybrid'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manjaro concluiu medidor do DC. faltar fazer upload e adicionar ao forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo quadrinhos pra cobrir o post de hoje.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pagina de quadrinhos, resenhas e podcast corrigida os posts associados.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout c\xc3\xb3pias (3) das chaves da \xc3\xa1rea externa do escrit\xc3\xb3rio est\xc3\xa3o prontas e entregues ao Mancha e Manjaro.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tira de segunda est\xc3\xa1 pronta. enviado para revisao.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ativado software zd para gravar desktop.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo download do audio Necromante_v4.wav'}},
{u'msg': {u'type': u'literal',
u'value': u'shout vers\xc3\xb5es 0.11.0 e 0.11.1 adicionadas ao Wiki http://wiki.nosdigitais.teia.org.br/Pet#Blueprints e tabela de Modificad'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando gravacao do ppcast 021'}},
{u'msg': {u'type': u'literal',
u'value': u'explicando pra isaura como funciona o AA. e mostrando como seria o recadastro das resenhas'}},
{u'msg': {u'type': u'literal', u'value': u'shout checkout escritorio'}},
{u'msg': {u'type': u'literal', u'value': u'shout scan e texto pendente.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout saindo pro escrit\xc3\xb3rio. Devo reconectar em 2 ou 3 horas.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout testing free android app Sprite Maker'}},
{u'msg': {u'type': u'literal',
u'value': u'shout continuando edi\xc3\xa7\xc3\xa3o no escritorio da parte II do ppcast 020 http://www.pulapirata.com/?p=13650'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversando sobre paainel com pliskin e manjaro'}},
{u'msg': {u'type': u'literal',
u'value': u'shout samuel de gois recrutado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout nao encontrei como fazer gif sequencia. iniciando arte do pingo beb doente'}},
{u'msg': {u'type': u'literal',
u'value': u'shout isolando lateral do arcondicionado com polioretano expandido.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout blz. vou come\xc3\xa7ar a trabalhar nos submenus da idade bebe. v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout at\xc3\xa9 17 min e 25 seg editados. pausa por hoje.'}},
{u'msg': {u'type': u'literal',
u'value': u'lendo texto: http://blog.samaltman.com/stupid-apps-and-changing-the-world'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando a arte das comida'}},
{u'msg': {u'type': u'literal',
u'value': u'shout programa\xc3\xa7ao mensal enviada por email \xc3\xa0 equipe.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout envelope com sanitario ao joao victor est\xc3\xa1 pronto para ser enviado.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout continuando edit ppcast 21.'}},
{u'msg': {u'type': u'literal', u'value': u'shout indo almo\xc3\xa7ar'}},
{u'msg': {u'type': u'literal',
u'value': u'shout estrat\xc3\xa9gia e agenda da grava\xc3\xa7\xc3\xa3o EL alinhada com o Mancha. Equipe partiu com previs\xc3\xa3o de retorno somente amanh\xc3\xa3 pela parte da tarde.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout adicionado atividades no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando a programa\xc3\xa7\xc3\xa3o de fevereiro para distribuir'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ressuscitando lucas, paulo e gonzo.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout item 0.6.0 e 0.11.0 atualizados: http://wiki.nosdigitais.teia.org.br/Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout cenario atualizado com borda branca. retirada a borda bege.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout arm\xc3\xa1rio e prateleiras organizadas.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout equipe, e cada membro com post associados corrigido'}},
{u'msg': {u'type': u'literal',
u'value': u'shout 201 - M\xc3\xa9todo de produ\xc3\xa7\xc3\xa3o de quadrinhos do Presto inserido no Manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout inscri\xc3\xa7ao de O Necromante para o festival Tiradentes e Ouro Preto.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout wiki sobre screencast arquivado no forum pp. http://wiki.nosdigitais.teia.org.br/Screencast'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando charter de A Lista'}},
{u'msg': {u'type': u'literal',
u'value': u'shout falando com o kbsa sobre paainel'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criada sess\xc3\xa3o de miss\xc3\xb5es no forum pp. ainda sendo criada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout edit no forum adicionando bot\xc3\xb5es, pingo idle e pingo comendo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout email enviado \xc3\xa0 gerente do banco sobre cc para empresa'}},
{u'msg': {u'type': u'literal',
u'value': u'ignore the haters and work on whatever you find interesting'}},
{u'msg': {u'type': u'literal',
u'value': u'shout listando atividades do dia'}},
{u'msg': {u'type': u'literal',
u'value': u'shout renderizando rev4, adicionado sirlancelot attacks castle.'}},
{u'msg': {u'type': u'literal',
u'value': u'leitura do primeiro texto concluido http://blog.samaltman.com/advice-for-ambitious-19-year-olds'}},
{u'msg': {u'type': u'literal', u'value': u'shout testando MAGIX edit pro'}},
{u'msg': {u'type': u'literal',
u'value': u'lendo um pouco sobre greenlight'}},
{u'msg': {u'type': u'literal',
u'value': u'site vai estar no ar com novo layout em 1 hora pulapirata.com'}},
{u'msg': {u'type': u'literal',
u'value': u'shout o lucas vai estar focado aos s\xc3\xa1bados no pet.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout trabalhando nos bot\xc3\xb5es'}},
{u'msg': {u'type': u'literal',
u'value': u'shout valeu aut0mata pelas risadas da tirinha. abs'}},
{u'msg': {u'type': u'literal',
u'value': u'shout wiki Simbá atualizado com arquivo SimBa_Rev00 em Blueprints: http://wiki.nosdigitais.teia.org.br/SimBar'}},
{u'msg': {u'type': u'literal',
u'value': u'shout calend\xc3\xa1rio de nov 2012 a out de 2013 impresso'}},
{u'msg': {u'type': u'literal',
u'value': u'shout dando uma pirada com fruit lopps e 8bit music'}},
{u'msg': {u'type': u'literal',
u'value': u'shout feito boneco para stop motion'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sprites exportados com software Avi4Bmp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizado galeria de fotos do musicoteca'}},
{u'msg': {u'type': u'literal', u'value': u'shout indo jantar'}},
{u'msg': {u'type': u'literal',
u'value': u'shout discuss\xc3\xa3o foi feita ontem com Mancha e Manjaro sobre abertura de microempresa. Coletar informa\xc3\xa7\xc3\xb5es no SEBRAE'}},
{u'msg': {u'type': u'literal',
u'value': u'sprite do pingo piscando corrigido'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado o pacote de som e animas feitas hoje ao v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout checando mapa. louveira, campinas e bairros de sp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout controle de custo pronto e alinhado com o elmanchez'}},
{u'msg': {u'type': u'literal',
u'value': u'shout cheguei no escritorio. arrumando guia de edi\xc3\xa7oes do walking dead pra grava\xc3\xa7ao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado lembrete de reforma da pagina'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo botao surfista prateado'}},
{u'msg': {u'type': u'literal', u'value': u'acompanhando E3 via twitch.tb'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pausa pro caf\xc3\xa9 da manh\xc3\xa3'}},
{u'msg': {u'type': u'literal', u'value': u'shout gravacao concluida'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pliskin e jansen gravando'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciand o download MAGIX'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tabela de atributos sendo trabalhada e adicionada na vers\xc3\xa3o 0.12.0 . Proposta inicial de atributos sem testes. A tabela se encontra na vers\xc3\xa3o 00.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout concluido pingo bebe coma alcoolico, irritado e mau humorado. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout dando uma olhada no ouya. console interessante http://www.ouya.tv/'}},
{u'msg': {u'type': u'literal',
u'value': u'shout Sprite Maker is good for pet. Trying first draft for pet character.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atividade adicionada para o Pet no trac'}},
{u'msg': {u'type': u'literal',
u'value': u'shout me escondendo pra tirar um cochilo'}},
{u'msg': {u'type': u'literal', u'value': u'shout mancha editando'}},
{u'msg': {u'type': u'literal',
u'value': u'criando uma sequencia de telas de navegacao #pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando edi\xc3\xa7\xc3\xa3o ppcast 020'}},
{u'msg': {u'type': u'literal',
u'value': u'hangout sobre o pet com v1z e hybrid deste as 20:50hs'}},
{u'msg': {u'type': u'literal',
u'value': u'shout juntando informa\xc3\xa7oes da equipe sobre custos e servi\xc3\xa7os. ppc'}},
{u'msg': {u'type': u'literal', u'value': u'shout instalando GIMP'}},
{u'msg': {u'type': u'literal',
u'value': u'continuar a ver o video a partir dos 16 min. estou pescando aqui. vou dormir pra voar amanha cedo.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout que software vc usa para gravar a tela do computador?'}},
{u'msg': {u'type': u'literal',
u'value': u'trocando ideia com o manjaro sobre eventos escola #pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo rascunho de arte para doodle carnival'}},
{u'msg': {u'type': u'literal', u'value': u'criando tickets'}},
{u'msg': {u'type': u'literal', u'value': u'shout pause'}},
{u'msg': {u'type': u'literal',
u'value': u'shout prot\xc3\xb3tipo do moto e xixinho saiu muito pequeno usando somente uma caixa de massinha. acrescentar quatro caixas para aumentar a escala.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversando com o v1z sobre como animar o pingo e aliment\xc3\xa1-lo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout teclando com v1z sobre o pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout assistindo sc part III do v1z http://www.youtube.com/watch?feature=player_embedded&v=veCo81CtCqM'}},
{u'msg': {u'type': u'literal',
u'value': u'uma bela lista de tutoriais. Steam Workshop: https://support.steampowered.com/kb_article.php?ref=6718-JXNM-4879&l=english'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fez instru\xc3\xa7\xc3\xa3o de de como utilizar o pAAinel e compartilhou com os piratas.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando subotoes em melhor resolucao.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout gravacao ppcast agendada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando plano de arte pet. #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout escrevendo pequeno russo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout p\xc3\xa1gina videos atualizada. Videos organizados atrav\xc3\xa9s de playtlist no youtube. Calo, Dennis e Sangue, Tiro e bunda adicionados: http://www.pulapirata.com/?page_id=80'}},
{u'msg': {u'type': u'literal',
u'value': u'shout rascunho cenario pronto.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout post agendado. Iniciando a revisao do episodio renderizado. banners prontos.'}},
{u'msg': {u'type': u'literal', u'value': u'shout pausa'}},
{u'msg': {u'type': u'literal',
u'value': u'shout abrindo planilha de tabela de modificadores. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout TakePills 19 no ar. Divulgado nas redes. P10'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criando email de grupo pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout recesso do trabalho iniciado. dedica\xc3\xa7ao ppc at\xc3\xa9 pr\xc3\xb3xima quarta - 06 de mar'}},
{u'msg': {u'type': u'literal',
u'value': u'dando uma revisada na documentacao do Pet pra dar uma relembrada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado ao elmanchez o psd dos sprites DC. ao gonzo tb.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout agendando post. tirinha do pingo atleta.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado email ao hybrid e v1z sobre AA.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversando com Ricardo sobre Simbá'}},
{u'msg': {u'type': u'literal',
u'value': u'shout abastecido materiais de escrit\xc3\xb3rio e adquirido um novo quadro de corti\xc3\xa7a, caixas para organizar objetos e equipamentos'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reuniao de a lista concluida. revisado o roteiro e definido os planos. 3 dias de filmagem sendo o 4 dia como contigencia. dois finais de semana.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout avisando o paulo, lucas e gonzo do progresso do pet'}},
{u'msg': {u'type': u'literal',
u'value': u'links do banner e convidados revisados'}},
{u'msg': {u'type': u'literal',
u'value': u'shout deu acesso ao servidor do pulapirata ao hybrid para instalar pAAinel'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo intro de take pills'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reuniu com o Manjaro e Mancha para alinhar as próximas atividades. Ensaio, lista de material. #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout Wiki atualizado com Simba_Rev01 em Blueprints (referencias e ferramentas adicionados ao documento) http://wiki.nosdigitais.teia.org.br/SimBar'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando botoes de obrigacoes (bebe)'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado ao Isa link para wiki'}},
{u'msg': {u'type': u'literal',
u'value': u'shout wordpress atualizado pra vers\xc3\xa3o 3.5.1'}},
{u'msg': {u'type': u'literal', u'value': u'shout indo testar ftl'}},
{u'msg': {u'type': u'literal',
u'value': u'shout inserido os link do repos e servidor no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout comprado 8 bit retro rampage, sound effects pack na gamedev.net'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversando com Victor, Lucas e Paulo sobre Pet. Definindo status, referências gráficas e próximos passos.'}},
{u'msg': {u'type': u'literal',
u'value': u'startups take off because the founders make them take off'}},
{u'msg': {u'type': u'literal',
u'value': u'shout volumes do evildead e intro estao baixo. fazendo correcao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout vendo video de gerenciamento de tempo http://www.produtividadeninja.com/culpa/'}},
{u'msg': {u'type': u'literal',
u'value': u'pergunta enviada aos palestrantes do dos 2 de outubro. How do you recruit the right team? How do you motivate them? '}},
{u'msg': {u'type': u'literal',
u'value': u'shout favicon adicionado ao forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout que software vc usa para gravar a tela do computador? v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout registro do mota e xixinho no manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z, hybrid, Pjr da 05 e dia 06 de outubro estarei em CPV. se puderem apare\xc3\xa7am por l\xc3\xa1! :D'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo subotoes humor. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pingo bebe dormindo pronto. fazendo upload no forum pp.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout preparando slides aos pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout divulgada a promo\xc3\xa7ao no fb pessoal'}},
{u'msg': {u'type': u'literal',
u'value': u'shout casca fora do ar? http://hera.ethymos.com.br:1080/paainel/casca onde se consulta o paainel agora?'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo upload das tabelas do mapa de anima\xc3\xa7ao em pdf.'}},
{u'msg': {u'type': u'literal', u'value': u'shout teste'}},
{u'msg': {u'type': u'literal',
u'value': u'shout cenário concluído. iniciando a customização dos objetos cenográficos #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout wallpaper the bobcats para smart phones do @elmanchez no ar: http://www.pulapirata.com/?p=13804 P10'}},
{u'msg': {u'type': u'literal',
u'value': u'shout vou reconectar em umas 2 ou 3 hs. bjocas hybrid v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout agenda da semana concluida.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando lista de atividades.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mais imagens corrigidas no wiki Pet http://wiki.nosdigitais.teia.org.br/Pet . Inserido as tabelas de correla\xc3\xa7\xc3\xa3o.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout corrigido posts associados das paginas promo\xc3\xa7\xc3\xb5es e revistas'}},
{u'msg': {u'type': u'literal',
u'value': u'shout email enviado ao v1z com os links do mapa de anima\xc3\xa7\xc3\xa3o atualizado.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando pingo bebe idle.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout compartilhou promo\xc3\xa7ao walking dead ascens\xc3\xa3o do governador no FB'}},
{u'msg': {u'type': u'literal', u'value': u'shout com pliskin e mancha'}},
{u'msg': {u'type': u'literal',
u'value': u'shout alguns videos http://www.stopmotionpro.com/index.php?option=com_content&view=category&layout=blog&id=13&Itemid=22'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criado dois or\xc3\xa7amentos para RF. tentando contato para checar o teto'}},
{u'msg': {u'type': u'literal', u'value': u'shout conta criada no vimeo.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ouvindo ideia do pliskin contado pelo manjaro'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ppcast 020 divulgado que est\xc3\xa1 online. http://www.pulapirata.com/?p=13650'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pesquisando referências gráficas para design do projeto Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout jogando hotline miami e gravando videos.'}},
{u'msg': {u'type': u'literal', u'value': u'shout verdade'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando modificadores de status'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversando com o mancha sobre o paainel'}},
{u'msg': {u'type': u'literal', u'value': u'shout testando articy'}},
{u'msg': {u'type': u'literal', u'value': u'shout action list atualizado'}},
{u'msg': {u'type': u'literal', u'value': u'acertando postagem do dia.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout exportando ver 00 do ppcast 020. iniciando revisao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout http://www.pulapirata.com/?p=13708'}},
{u'msg': {u'type': u'literal',
u'value': u'shout email check / reply #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo upload no forum pp dos sprites'}},
{u'msg': {u'type': u'literal',
u'value': u'shout render preview da edi\xc3\xa7ao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout planejando a grava\xc3\xa7\xc3\xa3o da tarde do clipe calo #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout assistindo screencast playn parte 2 do v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout descrevendo cenario projeto farinha'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tabela de Modificadores de status 3 adicionado ao wiki'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado email para a equipe sobre o escritorio.'}},
{u'msg': {u'type': u'literal',
u'value': u'procurar alguma antena wifi que seja aceita: http://www.tamos.com/products/commwifi/adapterlist.php'}},
{u'msg': {u'type': u'literal',
u'value': u'shout trouxe o cpu com maximum arcade para o escrit\xc3\xb3rio'}},
{u'msg': {u'type': u'literal',
u'value': u'o http://gifmake.com/ criou um gif compativel com o Avi4BMP'}},
{u'msg': {u'type': u'literal', u'value': u'email compartilhado'}},
{u'msg': {u'type': u'literal', u'value': u'shout configurando Oxwall'}},
{u'msg': {u'type': u'literal',
u'value': u'shout takepills 16 no ar: http://www.pulapirata.com/?p=12953'}},
{u'msg': {u'type': u'literal',
u'value': u'shout postado save the elephants'}},
{u'msg': {u'type': u'literal',
u'value': u'shout imprimindo tabelas e material Pet para facilitar o acesso as informa\xc3\xa7\xc3\xb5es'}},
{u'msg': {u'type': u'literal', u'value': u'shout pausa pro almo\xc3\xa7o'}},
{u'msg': {u'type': u'literal', u'value': u'shout voltando ao dc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout edi\xc3\xa7ao do bruto concluida.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout procurando sons para corte.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout falando sobre jogador de farinha'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo arte pingo bebe #pet'}},
{u'msg': {u'type': u'literal', u'value': u'shout guia de wd finalizado.'}},
{u'msg': {u'type': u'literal',
u'value': u'dominio registrado e twitter criado. US.'}},
{u'msg': {u'type': u'literal', u'value': u'respondido email do v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout aprovou acesso do porco ao Manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando parceiros no pulapirata e wiki do labmacambira.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout perfil do samuel criado e configurado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout próximos passos do clipe Calo da Malbec já foi alinhado.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout screencast Projeto Pet - Tabela de modificadores de Status Rev03 adicionado ao wiki: http://wiki.nosdigitais.teia.org.br/Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sprites da fase bebe da tabela A completa.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reagendada reuni\xc3\xb5es com Samuel e Ricardo para hj e amanh\xc3\xa3 respectivamente.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado ao elmanchez os links diretos para os gifs'}},
{u'msg': {u'type': u'literal',
u'value': u'shout contabilizando downloads wallpaper'}},
{u'msg': {u'type': u'literal',
u'value': u'shout abrindo o GIMP para tentar exportar o GIF de forma sequencial'}},
{u'msg': {u'type': u'literal',
u'value': u'shout detalhando item 0.9.0, 0.9.1, 0.9.2, 0.9.3 e 0.9.4.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mancha revisando roteiro de Arte Suave'}},
{u'msg': {u'type': u'literal',
u'value': u'shout planejamento do último dia de produção - Clipe Calo #ppc'}},
{u'msg': {u'type': u'literal', u'value': u'shout post agendado #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout animando cena da sala de reuniao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pirando com este videoclipe animal: http://www.youtube.com/watch?feature=player_embedded&v=Rgox84KE7iY'}},
{u'msg': {u'type': u'literal',
u'value': u'shout alinhado com o porco sobre o convite ao carranza para janeiro'}},
{u'msg': {u'type': u'literal',
u'value': u'shout registrando email do v1z no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'checando tabela dos valores de fome'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pingo bebe comendo animado j\xc3\xa1 no forum do pp. v1z, j\xc3\xa1 fiz algumas anima\xc3\xa7oes do pingo comendo e sentindo fome e alguns objetos de comida referente aos botoes. J\xc3\xa1 d\xc3\xa1 pra fazer o pingo sentir fome, vc dar alimento pra ele (no cen\xc3\xa1rio, expliquei melhor no forum) e ele mastigar. Tenho que fazer agora ele feliz.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pliskin fazendo download do celtx para iniciar roteiro.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout vendo referencia e roteiro p RF'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manjaro indicando pirates bend of misfits'}},
{u'msg': {u'type': u'literal',
u'value': u'shout respondido email do aut0mata'}},
{u'msg': {u'type': u'literal',
u'value': u'shout rotoscopia da reuniao 2 concluida. enviado ao elmanchez'}},
{u'msg': {u'type': u'literal',
u'value': u'shout forum atualizado http://www.pulapirata.com/manual/viewtopic.php?pid=32#p32 revisado o item 0.1.0, 0.2.0, 0.6.1, 0.6.2 e 0.6.3. Acrescentado o item 0.8.0.'}},
{u'msg': {u'type': u'literal',
u'value': u'servidor do pp limpo. todo backup e arquivos foram retirados.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout teste em stop motion com ciclope e o tentaculo.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout apresenta\xc3\xa7ao pet.rev4 pronta. screencast gravado. renderizando. pdf gerado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout gostaria de agendar um conf call com hybrid e automata ! Qual melhor hor\xc3\xa1rio? Em rela\xc3\xa7\xc3\xa3o ao pAAinel.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout os titulos foram destacados no post para facilitar a leitura.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo upload do screencast'}},
{u'msg': {u'type': u'literal',
u'value': u'shout staffing e or\xc3\xa7ando o necromante'}},
{u'msg': {u'type': u'literal',
u'value': u"You want to know how to paint a perfect painting? It's easy. Make yourself perfect and then just paint naturally"}},
{u'msg': {u'type': u'literal',
u'value': u'shout pessoal chegando no escrit\xc3\xb3rio pra reuniao de kick off the a lista'}},
{u'msg': {u'type': u'literal',
u'value': u'shout wike Pet atualizado com itens assigned.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout upload do pingo_bebe_piscando e pingo_bebe_pulando. Enviado ao v1z e hybrid.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando arte dc forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout indo pro escritorio com o mancha'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizado o wiki com arte do coco mole na vers\xc3\xa3o 0.5.0: http://wiki.nosdigitais.teia.org.br/Pet#Blueprints'}},
{u'msg': {u'type': u'literal',
u'value': u'shout escrevendo no forum pp. v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'finalmente com internet em casa! :D'}},
{u'msg': {u'type': u'literal',
u'value': u'vendo primeira palestra How to start a start up: https://www.youtube.com/watch?v=CBYhVcO4WgI'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando lista de atividades'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manjaro finalizando o storyboard de Largo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout checando a cAAsca para verificar o avan\xc3\xa7o do Pet hack day. Curioso pelo avan\xc3\xa7o'}},
{u'msg': {u'type': u'literal',
u'value': u'shout submenu de comida feito e manual atualizado. v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado ao mancha o link do video.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout argumento de jogador de farinha enviado para comentarios'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisao do project charter da luneta concluida'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z http://info.abril.com.br/noticias/mercado/veja-as-fotos-do-novo-escritorio-do-google-no-brasil.shtml'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando tabela de correla\xc3\xa7\xc3\xa3o dos bot\xc3\xb5es e status'}},
{u'msg': {u'type': u'literal',
u'value': u'shout procurando trilhas de horror'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tira de segunda agendada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout chart organizacional foi compartilhado ontem com Mancha, Manjaro, Kbsa e Pliskin e foi recebido com bons feedbacks. Pequenos ajustes para serem feitos.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout elmanchez, sim. no post do clipe Calo tem os cr\xc3\xa9ditos: http://www.pulapirata.com/?p=13279'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando grava\xc3\xa7ao do ppcast 021. todos os participantes estao presentes'}},
{u'msg': {u'type': u'literal',
u'value': u'site oofline novamente e desativado. (reason: terms of service violation - malware/virus)'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tres convidados j\xc3\xa1 aceitaram: Vieira, Gerlach e Carranza'}},
{u'msg': {u'type': u'literal', u'value': u'shout tirinha postada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout adicionado atividades na agenda de s\xc3\xa1bado 24/11'}},
{u'msg': {u'type': u'literal',
u'value': u'Tomando uma pra preparar pra Copa #aao0'}},
{u'msg': {u'type': u'literal',
u'value': u'shout erick da luneta entrou em contato solicitando reagendamento da reuniao do Largo para o fds.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revendo roteiro EL com elmanchez'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reforma elétrica do escritório concluída. HVAC instalado. #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando tabela modificadores status e atributos'}},
{u'msg': {u'type': u'literal', u'value': u'shout check paainel'}},
{u'msg': {u'type': u'literal',
u'value': u'shout http://www.bbc.co.uk/news/world-europe-21468116 impressionado com o meteoroo!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando o pet com o elmanchez'}},
{u'msg': {u'type': u'literal',
u'value': u'shout outras imagens corrigidas no wiki pet http://wiki.nosdigitais.teia.org.br/Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout segundo reminder enviado ao programador de wordpress.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo rascunho da tirinha de amanha'}},
{u'msg': {u'type': u'literal',
u'value': u'o lance das imagens foi devido ao upload atraves do jetpack. fernando procurando meio de redirecionar os links'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manjaro escrevendo hobobat'}},
{u'msg': {u'type': u'literal', u'value': u'shout testo da tirinha'}},
{u'msg': {u'type': u'literal',
u'value': u'fernando conseguiu recuperar maioria das imagens. Precisa testar.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criando project charter pro video largo'}},
{u'msg': {u'type': u'literal',
u'value': u'abrindo video do segundo dia da palestra: Ideas, Products, Teams and Execution Part II http://startupclass.samaltman.com/courses/lec02/'}},
{u'msg': {u'type': u'literal',
u'value': u'shout post do sgois agendado pra amanh\xc3\xa3.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout instalou a mesa digital no computador da fernanda'}},
{u'msg': {u'type': u'literal',
u'value': u'post no ar jogos de android #5: http://www.pulapirata.com/2014/06/jogos-de-android-5/'}},
{u'msg': {u'type': u'literal',
u'value': u'shout Avi4Bmp faz o export de gif para sprites. Fazendo sprites de todos os pingos animados. v1z e hybrid'}},
{u'msg': {u'type': u'literal', u'value': u'shout tirinha agendada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando tabela de atributos.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout voltei do almo\xc3\xa7o. cheio que nem uma porca'}},
{u'msg': {u'type': u'literal',
u'value': u'shout respondido email ao ppc sobre paainel.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout Celtx Plus comprado. instalando.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout vendo os screencasts do v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout grava\xc3\xa7\xc3\xb5es sincronizadas e pronta pra edi\xc3\xa7ao bruta.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout Pet wiki editado com imagens linkadas de forma errada. Vou corrigir depois.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout trabalhando no post. configurando promo.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout o png foi feito com Sprite Maker. pro projeto pet'}},
{u'msg': {u'type': u'literal', u'value': u'shout banner de tp21 enviado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout controlando tempo e produ\xc3\xa7\xc3\xa3o. iniciado edit ppcast21 min 12:25, 17:10hs'}},
{u'msg': {u'type': u'literal',
u'value': u'shout gravando locu\xc3\xa7ao de instru\xc3\xa7oes EL'}},
{u'msg': {u'type': u'literal',
u'value': u'shout dando uma fu\xc3\xa7ada no cartase.'}},
{u'msg': {u'type': u'literal', u'value': u'hangouts off'}},
{u'msg': {u'type': u'literal', u'value': u'shout de volta ao qg'}},
{u'msg': {u'type': u'literal',
u'value': u'shout projeto dc atualizado no forum pp. adicionado imagem das anota\xc3\xa7\xc3\xb5es do meu caderno.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout versoes 0.10.0 e 0.10.1 adicionados ao wiki pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout lista de atividades atualizada e enviada ao manjaro e mancha.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout comunicando a equipe de produ\xc3\xa7\xc3\xa3o das atividades EL.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout todos as anima\xc3\xa7\xc3\xb5es do pingo bebe e crian\xc3\xa7a est\xc3\xa3o concluidos!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout preparando post sobre Jogos de Android #3'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reuni\xc3\xa3o de alinhamento da grava\xc3\xa7ao video EL feita. Equipe partir\xc3\xa1 as 9hs da 602filmes.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout checando pAAinel e forum PP'}},
{u'msg': {u'type': u'literal',
u'value': u'shout exportando os objetos que ser\xc3\xa3o adicionados no cen\xc3\xa1rio quando apertar o botao correspondente.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout preparando equipamento para grava\xc3\xa7ao do ppcast'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mudan\xc3\xa7a na programa\xc3\xa7\xc3\xa3o. Postando hoje RPG de mesa e elmanchez entra amanh\xc3\xa3 com Bob Cats: http://www.pulapirata.com/?p=13861'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando arte do coco mole!'}},
{u'msg': {u'type': u'literal', u'value': u'shout lendo forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'(prestoppc) Checando email da nova palestra startup'}},
{u'msg': {u'type': u'literal',
u'value': u'shout gonzo__ est\xc3\xa1 no sistema! :D D\xc3\xa1-lhe Doodle Carnival'}},
{u'msg': {u'type': u'literal',
u'value': u'shout submenu diversao (bebe) pronto. Upload feito no manual v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criado usuario wp e email do samuel, al\xc3\xa9m de compartilhar o manual dos colaboradores rev05'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pingo vomitando adicionado no wiki: http://wiki.nosdigitais.teia.org.br/Pet#Blueprints'}},
{u'msg': {u'type': u'literal',
u'value': u'shout coletando inform\xc3\xa7\xc3\xb5es no ganalytic'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ;aa checando emails sobre pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criando status vicio e seus tipos para o Pet.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mancha deixou pronto o dvd com portfolio audiovisual e carta assinada.Inscri\xc3\xa7\xc3\xa3o Rel\xc3\xb3gio da Torre'}},
{u'msg': {u'type': u'literal',
u'value': u'shout copias das chaves feitas. #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout alinhado com Porco postura e perguntas do PPC durante a reuni\xc3\xa3o com a editora Monkix'}},
{u'msg': {u'type': u'literal',
u'value': u'shout respondendo email da jow e gonzo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout em conf call com o gonzo. Fazendo upload do d carnival'}},
{u'msg': {u'type': u'literal',
u'value': u'shout scan da tirinha do manjaro'}},
{u'msg': {u'type': u'literal',
u'value': u'shout confirmando programa\xc3\xa7\xc3\xa3o semanal'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pesquisando fornecedores para proje\xc3\xa7\xc3\xa3o mapeada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout preparando para editar sons do pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z_ alterada a anima\xc3\xa7\xc3\xa3o da versao 0.1.0. Adicionada a vers\xc3\xa3o 0.8.1.'}},
{u'msg': {u'type': u'literal', u'value': u'shout almo\xc3\xa7o'}},
{u'msg': {u'type': u'literal',
u'value': u'shout post do filma brasil promovido 11 reais.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout 106 - Como registrar atividades inserido no Manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout forro do escrit\xc3\xb3rio instalado, aguardando limpeza #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout project charter largo enviado ao manjaro.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout encaminhado email para a rafa com lista equipamentos, equipe, informa\xc3\xa7\xc3\xb5es. VL'}},
{u'msg': {u'type': u'literal',
u'value': u'shout quem somos, post associados corrigido'}},
{u'msg': {u'type': u'literal',
u'value': u'shout isa se manifestou disponivel para trabalhar no pet.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pesquisa sobre abertura de empresas no sebrae'}},
{u'msg': {u'type': u'literal',
u'value': u'shout 6 bast\xc3\xb5es de massa de modelar amarela, e 6 bat\xc3\xb5es azuis.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout comprado massas de modelar para os personagens do teste de stopmotion'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z esclareceu como subir imagem na wiki. iniciando a corre\xc3\xa7\xc3\xa3o do wiki Pet: http://wiki.nosdigitais.teia.org.br/Pet . Continuarei as demais imagens ao longo do dia.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout banner quadrado do tp pronto!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout elmanchez no surfista calhorda.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando subbotoes higiene (bebe)'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviou as configurações do servidor ao Ricardo por email'}},
{u'msg': {u'type': u'literal',
u'value': u'shout adicionado o item 0.7.0 Noite no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'tira agendada e divulgada do Pulapirata.com'}},
{u'msg': {u'type': u'literal',
u'value': u'shout finalizando post para agendar publica\xc3\xa7\xc3\xa3o.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado a programa\xc3\xa7\xc3\xa3o por email'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ouvindo grava\xc3\xa7\xc3\xa3o do ppcast 20'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado pacote de botoes ao v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout parando RPG de mesa para falar do orcamento largo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout editando ppcgames prottotipo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout imagem de background do TOPO foi adicionado no forum. fui pra o caf\xc3\xa9'}},
{u'msg': {u'type': u'literal',
u'value': u'shout falta taxinha para prender os papeis no mural'}},
{u'msg': {u'type': u'literal',
u'value': u'shout falando sobre take pills com pliskin'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tentando importar do flash no illustrator mas dando erro. nao da pra concluir a tira. arte feita, falta o texto.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conseguiu contato com servidor e ativou o SSH. Dados enviado por email ao hybrid'}},
{u'msg': {u'type': u'literal',
u'value': u'shout kbsa, agora que salvou o labmacambira nos favoritos. salva esse link tb: http://www.pulapirata.com/manual/'}},
{u'msg': {u'type': u'literal',
u'value': u'shout frigobar limpo e ligado no escrit\xc3\xb3rio.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado os sprites ao v1z_ por email'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tabela de atributos revis\xc3\xa3o 02 no item 0.12.0. http://wiki.nosdigitais.teia.org.br/Pet v1z o que acha dessa implementa\xc3\xa7\xc3\xa3o? Como sugere?'}},
{u'msg': {u'type': u'literal',
u'value': u'shout me atualizando com o v1z sobre pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout novos rascunhos feitos para interface do Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout issues identificados e nao corrigidos: 1. pagina videos quebrada. 2. slider na frontpage n\xc3\xa3o parece os banners.'}},
{u'msg': {u'type': u'literal',
u'value': u'17 itens reportados da nova pagina e 6 solucionados.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sub botoes lazer (bebe) prontos. Upload feito no forum pp.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout d\xc3\xbavida: javascript pode acessar algum arquivo de texto hospedado na web?'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tentando configurar mic de lapela'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pAAinel filtro adicionado \xc3\xa0 novos projetos no forum pp.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mexendo na lista de a\xc3\xa7\xc3\xb5es.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout solicitando revis\xc3\xa3o do som e trilha para render pr\xc3\xa9-final de O Necromante.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout listas de cursos sebrae: http://www.ead.sebrae.com.br/lista-de-cursos/'}},
{u'msg': {u'type': u'literal', u'value': u'shout brainstorm clipe RF'}},
{u'msg': {u'type': u'literal',
u'value': u'shout leu 4 edi\xc3\xa7oes de Walking Dead'}},
{u'msg': {u'type': u'literal',
u'value': u'shout menu social pronto. Bloqueado para nivel bebe.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout 0.12.0 atualizado e adicionado 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5. STATUS_MODIFICADORES_rev03.xls est\xc3\xa1 disponivel para download: http://wiki.nosdigitais.teia.org.br/Pet#Blueprints'}},
{u'msg': {u'type': u'literal',
u'value': u'shout discutindo sobre como fazer a intro do TakePills com o elmanchez'}},
{u'msg': {u'type': u'literal', u'value': u'shout criado g+ ppgames grupo'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reagendada grava\xc3\xa7\xc3\xa3o do ppcast 021 para ter\xc3\xa7a 26/03'}},
{u'msg': {u'type': u'literal', u'value': u'shout enquanto isso Witcher 2'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo a cestinha de dormir do pingo.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout trabalhando no pingo bebe bebado'}},
{u'msg': {u'type': u'literal',
u'value': u'email com screencast enviado ao v1z, automata, hybrid e manjaro'}},
{u'msg': {u'type': u'literal',
u'value': u'shout checando tiled and texture packer softwares comentado pelo v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisao modificadores de status, pet.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pilhando pro trabalho da noite.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout entregou a documenta\xc3\xa7ao e dvd para o leo'}},
{u'msg': {u'type': u'literal',
u'value': u'arte do pingo piscando criada. tentando relembrar como foi criado os gifs'}},
{u'msg': {u'type': u'literal',
u'value': u'shout vendo o resultado do trabalho do v1z com pingo pulando.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout adicionado o link do ultimo screencast no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout botoes principais prontos.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout semana de ferias agendada para focar no projeto pet e pp. se liga nas datas v1z, elmanchez, gonzo__ 28/02 ao dia 06/03.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout debate sobre o roteiro do manjaro'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversando sobre a tirinha de amanh\xc3\xa3. anota\xc3\xa7oes do pliskin'}},
{u'msg': {u'type': u'literal',
u'value': u'shout segue as intruções pra instalar o django hybrid http://blog.ruedaminute.com/2011/01/2011-installation-instructions-for-django-on-bluehost/'}},
{u'msg': {u'type': u'literal',
u'value': u'a jow aceitou fazer a arte final do pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout compartilhou com o manjaro por email o site com fotos das ruinas de paricatuba para cen\xc3\xa1rio de curta metragem: http://www.maxcohenphotography.com/Portfolio/Paricatuba/21415703_XJvpJz/2043430006_KwZkt9P#!i=2197782419&k=nVjZq6G'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fu\xc3\xa7ando na loja steam'}},
{u'msg': {u'type': u'literal', u'value': u'shout indo pra casa.'}},
{u'msg': {u'type': u'literal',
u'value': u'greenlight registrado: http://steamcommunity.com/sharedfiles/filedetails/?id=307251360'}},
{u'msg': {u'type': u'literal',
u'value': u'shout http://wiki.nosdigitais.teia.org.br/Pet#Blueprints'}},
{u'msg': {u'type': u'literal',
u'value': u'shout grava\xc3\xa7ao do ppcast 019 foi gravado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout renovação da anuidade do servidor concluída. #ppc'}},
{u'msg': {u'type': u'literal', u'value': u'ensinando fernanda sobre o AA'}},
{u'msg': {u'type': u'literal',
u'value': u'shout respondido post do v1z. iniciando edit no wiki pet. como adiciona imagem nisso?'}},
{u'msg': {u'type': u'literal',
u'value': u'shout banners trocados da pagina podcast: http://www.pulapirata.com/?page_id=4823'}},
{u'msg': {u'type': u'literal',
u'value': u'shout subbotoes saude (bebe) prontos. Fazendo upload para manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout t\xc3\xa1 chovendo. clima bom'}},
{u'msg': {u'type': u'literal',
u'value': u'shout planejando proximas animacoes e artes'}},
{u'msg': {u'type': u'literal', u'value': u'shout upload no forum manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout testando modelo de filmagem para ppgames.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout criando as vers\xc3\xb5es 0.11.0 e 0.11.1'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado email para rafa e reinaldo. video EL'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tira revisada, enviada ao porco para comentarios e agendada para proxima segunda.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout valeu v1z e tonussi. tonussi saiu, copiar minha ultima msg p ele: <prestoppc> tonussi, fala cara! estou editando um de filme. espero que na proxima segunda.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pingo bebe varrendo sprite pronto'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tirinha do Pingo divulgada: http://www.pulapirata.com/?p=13782'}},
{u'msg': {u'type': u'literal',
u'value': u'shout escrevendo email ao Gonzo, sobre o Pet.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout voltando do almo\xc3\xa7o pra tabela. preparando conteudo para grava\xc3\xa7\xc3\xa3o screencast.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tocar online inserido no post. TakePills 20 no ar: http://www.pulapirata.com/?p=13959'}},
{u'msg': {u'type': u'literal', u'value': u'shout checkin qg'}},
{u'msg': {u'type': u'literal',
u'value': u'shout postado a tira do gonzo recebida por email'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizado trac do gt-pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout lista de atividades atualizada.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout acho que o microfone est\xc3\xa1 queimado. nao responder. vou testar depois na mesa de som do mancha.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando agenda da noite'}},
{u'msg': {u'type': u'literal',
u'value': u'shout planilha de custos e gastos enviado ao elmanchez do video EL'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviando email ao grupo Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo upload no forum do pingo bebe bebado. mudando o pingo doente para pingo de ressaca.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout indo com o Manjaro pra reuni\xc3\xa3o com o Samuel'}},
{u'msg': {u'type': u'literal',
u'value': u'shout planilha modificadores de status concluida e impressa. planilhas do ganalytics tb impressa.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout hora de tomar umas. adi\xc3\xb3s'}},
{u'msg': {u'type': u'literal',
u'value': u'chegando se a jow leu o mapa de arte do pet'}},
{u'msg': {u'type': u'literal', u'value': u'shout 50 min'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reorganizado as versoes 0.12.0 \xc3\xa0 0.14.5. inserido o 0.7.1. wiki Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviou o link por email ao hybrid e v1z com instruções para instalação do Node.js no server. #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout rendering screencast mod status matrix rev03'}},
{u'msg': {u'type': u'literal',
u'value': u'shout subotoes em melhor resolucao prontos. iniciando upload no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout interessante o pjs sketch do tonussi.'}},
{u'msg': {u'type': u'literal', u'value': u'shout post agendado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout manjaro terminou duas charges de XXX-Men.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tabela de hierarquia das animas enviada por email ao v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout renderizando versao 3. continuando revisao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout bob cats divulgado no FB'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mapa de arte e anima\xc3\xa7ao concluida. no total faltam 326 desenhos a serem concluidos. rever tabela D se n\xc3\xa3o tem item da tabela A.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout divulgado resenha do porco: http://www.pulapirata.com/?p=13993'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado elmanchez o rotoscopia 1'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tabela de atributos e acoes atualizada, exportando para iniciar upload. anima\xc3\xa7\xc3\xb5es em aberto identificadas. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout artes dos subotoes concluidas'}},
{u'msg': {u'type': u'literal',
u'value': u'shout trabalhando no pingo bebe doente'}},
{u'msg': {u'type': u'literal',
u'value': u'shout post no ar. Dia da Dignidade Zero: http://www.pulapirata.com/?p=13799'}},
{u'msg': {u'type': u'literal',
u'value': u'tentando cadastrar o pet no greenlight'}},
{u'msg': {u'type': u'literal',
u'value': u'shout recebido hq do porco para refazer. programar para lancar proxima segunda'}},
{u'msg': {u'type': u'literal', u'value': u'shout mail lista criado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout roteiro do largo, primeira revis\xc3\xa3o com manjaro e presto.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout alinhando post de amanh\xc3\xa3 com elmanchez e porco'}},
{u'msg': {u'type': u'literal',
u'value': u'lendo os requisitos do greenlight steam'}},
{u'msg': {u'type': u'literal',
u'value': u'shout botoes principais em melhor resolu\xc3\xa7ao prontos. Normal e Apertado. Fazendo upload no Forum'}},
{u'msg': {u'type': u'literal',
u'value': u'shout upload conclu\xc3\xaddo dos subotoes recortados'}},
{u'msg': {u'type': u'literal',
u'value': u'cheguei no hotel em Tepeji. Agora sair pra comer uns tacos, muchachos!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reunião com a 602 agendada (na própria agência) para as 17hs e ensaio para as 19hs na indie #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout autorizado o acesso do aut0mata ao forum ppc.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout intro pronta. mp3, banner quadrado e mp3tag enviado ao jansen. instru\xc3\xa7oes revisadas de uso.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout vendo com o manjaro sobre substituir o necromante pelo novo argumento'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ouvindo um pouco sobre zen fudismo: http://www.pulapirata.com/?p=5950'}},
{u'msg': {u'type': u'literal',
u'value': u'shout subotoes obrigacoes (bebe) prontos. upload feito no manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sprite pingo bb coma alcoolico'}},
{u'msg': {u'type': u'literal',
u'value': u'shout definida a escala da semana'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando tabela de modificadores de status. pet'}},
{u'msg': {u'type': u'literal', u'value': u'shout divulgado o post no fb.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout kbsa solicitou pauta e guia pra grava\xc3\xa7ao de hoje. Gravacao confirmada para as 18hs gmt -4'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando tabela atributos e modificadores. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo teste de musica 8bits. ao exportar o som est\xc3\xa1 diferente do que durante a edi\xc3\xa7'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo subotoes de lazer.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout downloading trilhas para ppcast020'}},
{u'msg': {u'type': u'literal',
u'value': u'shout a link with some softwares for sprites http://answers.yahoo.com/question/index?qid=20090214082709AA7urVw'}},
{u'msg': {u'type': u'literal',
u'value': u'shout downloading Gimp windows'}},
{u'msg': {u'type': u'literal', u'value': u'shout testando o GIMP'}},
{u'msg': {u'type': u'literal',
u'value': u'shout dando uma lida sobre processos'}},
{u'msg': {u'type': u'literal',
u'value': u'shout Tabela de atributos v02 revisada no item 0.12.0. Tabela de modificadores de status v02 revisada. PDF das tabelas adicionadas para download: http://wiki.nosdigitais.teia.org.br/Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout nofx de fundo no screencast sobre playN parte 2 do v1z. ducaralho!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout qual aplicativo se usa para gravar a tela do pc, v1z?'}},
{u'msg': {u'type': u'literal',
u'value': u'comida mexicana produz muitos gases. Homem bomba.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout upload feito no forum pp. pingo bebe doente'}},
{u'msg': {u'type': u'literal',
u'value': u'shout lendo email do mancha para reescrever e reencaminhar mais tarde.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout alinhando arte novo banner'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizado item 0.12.0 no wiki pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando modificadores e atributos. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reportando ao mancha progresso EL'}},
{u'msg': {u'type': u'literal',
u'value': u'montando esqueleto do manual de arte #pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout conversa com grupo de programadores de Manaus sobre arte conceitual do jogo deles'}},
{u'msg': {u'type': u'literal',
u'value': u'shout hora de tomar cerveja e tacos apimentadaralhos! boa noite lindos'}},
{u'msg': {u'type': u'literal',
u'value': u'shout objeto comidas adicionados ao forum pp. Iniciar trabalho na anima\xc3\xa7\xc3\xa3o do Pingo Comendo.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizado LINKS na wiki Pet: http://wiki.nosdigitais.teia.org.br/Pet com a apresenta\xc3\xa7\xc3\xa3o comentada no screencast apresentando o Pet de uma forma mais clara para ajudar o v1z no desenvolvimento: http://youtu.be/ynsMbNtIEzk'}},
{u'msg': {u'type': u'literal',
u'value': u'shout trabalhando no submenu de diversao (bebe)'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pausa para o almo\xc3\xa7o. a terceira estampagem falhou.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando anima pro video EL'}},
{u'msg': {u'type': u'literal',
u'value': u'shout forum pp atualizado com cenario e botoes principais.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout discutindo sobre roteiros para editais.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pingo bebe morto pronto. fazendo upload no forum pp. hybrid'}},
{u'msg': {u'type': u'literal',
u'value': u'enviando backup de uploads pro fernando.'}},
{u'msg': {u'type': u'literal', u'value': u'shout pausa, 23:35. ppcast 21'}},
{u'msg': {u'type': u'literal',
u'value': u'shout Pontua\xc3\xa7\xc3\xb5es das resenhas (pacote para download) inserido no manual'}},
{u'msg': {u'type': u'literal',
u'value': u'shout hybrid v1z, compilei todas as informa\xc3\xa7\xc3\xb5es soltas neste t\xc3\xb3pico para facilitar a procura de informa\xc3\xa7\xc3\xa3o: http://www.pulapirata.com/manual/viewtopic.php?pid=32#p32'}},
{u'msg': {u'type': u'literal',
u'value': u'shout dando autoriza\xc3\xa7ao ao hybrid'}},
{u'msg': {u'type': u'literal',
u'value': u'shout identificado email enviado por moderador, quando reply vai mail somente aos moderadores e nao pra lista.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout parando para ed. 75 para almo\xc3\xa7ar.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout presto desenhou tira de adventure island 2'}},
{u'msg': {u'type': u'literal',
u'value': u'shout registrado no forum pp o screencast part 3 do v1z sobre Desenvolvimento PlayN. http://www.youtube.com/watch?v=veCo81CtCqM&feature=youtu.be'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z solicitou sons para o pet.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout importnado videos pra iniciar edi\xc3\xa7ao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout hybrid \xc3\xa9 o mais novo mestre do peda\xc3\xa7o.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout fazendo estampagem nas camisetas'}},
{u'msg': {u'type': u'literal',
u'value': u'shout concluido os botoes comida de todas as idades. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout testando ppcast 22 trilha v01'}},
{u'msg': {u'type': u'literal',
u'value': u'shout produ\xc3\xa7\xc3\xa3o de 2014 j\xc3\xa1 iniciada. Monstro, Samuel, Mancha, Presto, Salsicha e Manjaro garantidos para a primeira entrega para o dia 20 de dez.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado email ao elmanchez sobre agenda/ lista de atividades/ revis\xc3\xa3o.'}},
{u'msg': {u'type': u'literal',
u'value': u'criado conta, acessos para gplay dev e greenlight. Taxas pagas.'}},
{u'msg': {u'type': u'literal', u'value': u'shout desligando as coisas.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout render em avi ficou xigante. renderizando em mp4'}},
{u'msg': {u'type': u'literal',
u'value': u'shout post do mancha sendo divulgado nas redes: http://www.pulapirata.com/?p=13773'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizada info do SEO Tools Attracta'}},
{u'msg': {u'type': u'literal',
u'value': u'shout agendada a tira do sgois.'}},
{u'msg': {u'type': u'literal',
u'value': u'iniciando leitura do segundo texto: https://medium.com/i-m-h-o/good-and-bad-reasons-to-become-an-entrepreneur-decf0766de8d'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pausa por hoje. at\xc3\xa9 amanh\xc3\xa3 v1z e hybrid'}},
{u'msg': {u'type': u'literal',
u'value': u'shout post de segunda-feira agendado.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout descri\xc3\xa7\xc3\xb5es finalizadas. Enviando para revis\xc3\xa3o do manjaro'}},
{u'msg': {u'type': u'literal',
u'value': u'shout trabalhando no cen\xc3\xa1rio do Pet #ppc'}},
{u'msg': {u'type': u'literal',
u'value': u'shout ajustando volume do ppcast020. iniciando a ultima parte da edi\xc3\xa7\xc3\xa3o'}},
{u'msg': {u'type': u'literal',
u'value': u'shout aprendendo fruit loops com elmanchez'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sub botoes higiene prontos. upload feito no manual . v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout brainstorm pra proxima tirinha'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando edicao screencast'}},
{u'msg': {u'type': u'literal',
u'value': u'shout procurando equipamento para gravar imagem de 3 cameras ao mesmo tempo. ainda sem sucesso'}},
{u'msg': {u'type': u'literal',
u'value': u'shout solicitado ao v1z para responder ao email do grupo pet'}},
{u'msg': {u'type': u'literal',
u'value': u'pablo mayer declinou a arte final do pet. entrando em contato com a jow pra fazer oferta'}},
{u'msg': {u'type': u'literal',
u'value': u'shout retornando pro guia de walking dead. ed 69'}},
{u'msg': {u'type': u'literal',
u'value': u'imagens do carranza estavam quebradas. data s alteradas'}},
{u'msg': {u'type': u'literal',
u'value': u'shout elmanchez. eu n poderia trabalhar no som, dever\xc3\xa1 ser o manjaro.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout autoriza\xc3\xa7\xc3\xa3o cedida.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sao paulo FC eh o melhor do mundo!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout upload e postado no forum (edit no 0.4.0) sons arroto, solu\xc3\xa7o e peido.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout finalizando edi\xc3\xa7\xc3\xa3o do ppcast020'}},
{u'msg': {u'type': u'literal',
u'value': u'shout testing ASEPRITE V0.9.2 win7. Very good and easy to work.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout link lomadee criado e atualizado o post do porco'}},
{u'msg': {u'type': u'literal', u'value': u'shout post no ar Mr White !'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tabela de modoficadores atualizada. aba atributos com novos sprites para estado NORMAL. pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout merda com mosquito animado feito. fazendo upload no forum pp.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout exportando arte do mosquito e mosquito fedor para sprites'}},
{u'msg': {u'type': u'literal', u'value': u'shout pausa almo\xc3\xa7o'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pirando com manjaro sobre stop motion scifi'}},
{u'msg': {u'type': u'literal',
u'value': u'shout area de clientes no forum pp atualizada'}},
{u'msg': {u'type': u'literal',
u'value': u'shout agendando tiras do sdegois'}},
{u'msg': {u'type': u'literal',
u'value': u'shout indo buscar caneta da tablet.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout discussão iniciada por email sobre codigo aberto e fechado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout pingo bebe triste pronto. upload feito no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout grava\xc3\xa7ao de wd concluida. A primeira parte foi perdida com mal contato no cabo desligando o gravador!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout montando a tira 10 de rpg de mesa'}},
{u'msg': {u'type': u'literal',
u'value': u'lendo texto 3 da palestra start up. http://www.paulgraham.com/startupideas.html'}},
{u'msg': {u'type': u'literal',
u'value': u'jogando smite. jogo free. MOBA.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout hybrid link solicitado. pet http://www.pulapirata.com/manual/viewtopic.php?id=31'}},
{u'msg': {u'type': u'literal',
u'value': u'shout adicionado no forum o zip com os sons e duas imagens animadas, Vomito e Pingo bebe vomitando.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout preparando post do ppcast 020'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado a lista de atividades rev03 aos pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout plano de sprites pet revisadas. numero total baixou para: 241'}},
{u'msg': {u'type': u'literal',
u'value': u'shout documentos assinados e dvd pronto para ser entregue a Malbec'}},
{u'msg': {u'type': u'literal',
u'value': u'shout lista de atividades atualizada e enviada para email pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout promo revista sanit\xc3\xa1rio no ar: http://www.pulapirata.com/?p=13463'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviando email ao hybrid, v1z e aut0mata sobre lalenia m\xc3\xb3vel'}},
{u'msg': {u'type': u'literal', u'value': u'shout teste em stopmotion.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando novamente a tabela de correla\xc3\xa7ao'}},
{u'msg': {u'type': u'literal',
u'value': u'shout imprimindo pauta e guia para gravacao ppcast wd'}},
{u'msg': {u'type': u'literal',
u'value': u'shout locu\xc3\xa7ao concluida e enviada ao elmanchez'}},
{u'msg': {u'type': u'literal',
u'value': u'shout comprado 101 Design Methods. Livro no kindle.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout continuando edi\xc3\xa7\xc3\xa3o ppcast 020 parte II'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado por email os sprites do pingo bebe animado ao hybrid e v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout respondendo post do v1z no pp forum.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sourceforge, wikipet abertos para plant\xc3\xa3o para o Pet Hack Day'}},
{u'msg': {u'type': u'literal',
u'value': u'shout screencasts registrados no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout tabela de correla\xc3\xa7ao atualizada. fazendo upload no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'tomando pau do aircrack. automata heeeeeeeeeeeeeeeelp!'}},
{u'msg': {u'type': u'literal',
u'value': u'shout texto conclu\xc3\xaddo, falta adicionar as imagens. Post salvo em draft'}},
{u'msg': {u'type': u'literal',
u'value': u'shout iniciando a proxima tira de RPG de mesa'}},
{u'msg': {u'type': u'literal', u'value': u'shout downloading v1z mail'}},
{u'msg': {u'type': u'literal',
u'value': u'shout dando uma pirada no site: http://themetapicture.com/'}},
{u'msg': {u'type': u'literal',
u'value': u'shout continuando edi\xc3\xa7ao parte II ppcast 020.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout email de apresenta\xc3\xa7ao do samuel aos demais piratas j\xc3\xa1 enviado.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout sub botoes disciplina (bebe) prontos. Upload feito no forum pp'}},
{u'msg': {u'type': u'literal',
u'value': u'shout editando parte II ppcast 020'}},
{u'msg': {u'type': u'literal',
u'value': u'shout v1z_ uma pergunta. Vou fazer o pingo sujo agora. seria poss\xc3\xadvel eu fazer somente os mosquitos voando e a fumacinha do fedor saindo, ai quando ele fica sujo s\xc3\xb3 muda outro status que adiciona a anima\xc3\xa7\xc3\xa3o sujeira em cima de todas as outras anima\xc3\xa7\xc3\xb5es do pingo. seriam duas camadas.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando post pp DC com imagem rascunho.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout or\xc3\xa7ado o curta a lista. Mancha deve levantar fundos com o Castro.'}},
{u'msg': {u'type': u'literal',
u'value': u'relendo email do v1z sobre o bate papo com o bricknator.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado convite para os convidados de 2014. Vieira, Gerlach, Ryot, Mayer, Gomez, Valente, Medeiros e Coutinho'}},
{u'msg': {u'type': u'literal', u'value': u'shout lendo email do v1z'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisando com o manjaro, o calendário de atividades do pulapirata'}},
{u'msg': {u'type': u'literal',
u'value': u'shout revisada a anima do pingo bebe piscando, e feita o sprite do pingo bebe respirando.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout postado o video O Dia que a Terra parou de masturbar: http://www.youtube.com/watch?feature=player_embedded&v=PFsv8BqYieU #hilario'}},
{u'msg': {u'type': u'literal',
u'value': u'shout reuni\xc3\xa3o c samuel mudou p dia 20/11 as 19hs'}},
{u'msg': {u'type': u'literal',
u'value': u'shout agendada reuniao no qg sobre clipe luneta magica.'}},
{u'msg': {u'type': u'literal',
u'value': u'shout email sobre camp amazonense enviado ao dudu'}},
{u'msg': {u'type': u'literal',
u'value': u'shout analisando estudo de organiza\xc3\xa7ao e produtividade'}},
{u'msg': {u'type': u'literal',
u'value': u'lendo segundo texto recomendado da palestra: http://paulgraham.com/ds.html'}},
{u'msg': {u'type': u'literal',
u'value': u'shout programa\xc3\xa7\xc3\xa3o da semana fechado'}},
{u'msg': {u'type': u'literal',
u'value': u'shout a\xc3\xa7\xc3\xb5es inseridas no sourceforge'}},
{u'msg': {u'type': u'literal',
u'value': u'shout bebendo muito \xc3\xa1gua pra curar ressaca'}},
{u'msg': {u'type': u'literal',
u'value': u'shout enviado um pacote pequeno de sons ao v1z para pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout bot\xc3\xa3o e pagina do especial surfista prateado criados: http://www.pulapirata.com/?page_id=13891'}},
{u'msg': {u'type': u'literal',
u'value': u'shout agendada tira querido diario 1'}},
{u'msg': {u'type': u'literal',
u'value': u'shout 0.1.0 e 0.2.0 com imagens corrigidas. http://wiki.nosdigitais.teia.org.br/Pet'}},
{u'msg': {u'type': u'literal',
u'value': u'shout resolvido problema do mailing list'}},
{u'msg': {u'type': u'literal',
u'value': u'shout mancha trabalhando no surfista calhorda'}},
{u'msg': {u'type': u'literal', u'value': u'hora do treinamento e prova'}},
{u'msg': {u'type': u'literal', u'value': u'shout divulgado'}},
{u'msg': {u'type': u'literal',
u'value': u'enviando email lembrete ao Pablo Mayer. negociando arte'}},
{u'msg': {u'type': u'literal',
u'value': u'shout lista de atividades restantes para gravação do clipe distribuida por email e para a Malbec. foi solicitado ajuda para busca de materiais.'}},
{u'msg': {u'type': u'literal', u'value': u'shout iniciando rotoscopia 02'}},
{u'msg': {u'type': u'literal',
u'value': u'shout atualizando pcharter largo luneta'}},
{u'msg': {u'type': u'literal',
u'value': u'shout email sobre ppltda enviado'}}]}}
In [351]:
NOW=time.time()
#nicks=["prestoppc"]
#nicks=["prestoppc","v1z"]
nicks=["prestoppc","prestoppc_mob"]
n_msgs=30
offset=0
q="""SELECT DISTINCT ?aname
WHERE {
?foo a aa:Shout .
?foo aa:user ?aname .
}"""
# para acesso remoto:
#sparql = SPARQLWrapper("http://200.144.255.210:8082/aa/sparql")
sparql2 = SPARQLWrapper("http://localhost:82/aa/sparql")
sparql2.setQuery(PREFIX+q)
sparql2.setReturnFormat(JSON)
results = sparql2.query().convert()
print("%.2f segundos para puxar todas as infos do aa"%
(time.time()-NOW,))
3.96 segundos para puxar todas as infos do aa
In [349]:
Out[349]:
rdflib.term.URIRef(u'http://purl.org/socialparticipation/aa/User#ggdo')
In [346]:
results
Out[346]:
{u'head': {u'vars': [u'aname']},
u'results': {u'bindings': [{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hick209'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#ggdo'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#v1z'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#lari'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hybrid'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hercules'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#automata'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#DaneoShiga'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#bolitutti'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#humannoise'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#o0o0o'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#mquasar'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#aut0mata'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#cardinot'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#17'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#blober'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#lmatos'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#tonussi'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#kamiarc'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#prestoppc'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#filter0'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#quirinobahr'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Ak1n'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Flecha'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Penalva'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Fefo'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#teste'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#humannoise_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#witness123'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#tatothetatoman'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#bitanoma'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#14'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#gosma'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#v1z_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#audiohack'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#escritor'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#elmanchez'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#dj_brip'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#SUoU9'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#cravelho'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#malacabado'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#libotte'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#patriciaferraz007'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#greenkobold'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#mari_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Pjr'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#lucastonussi'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#rgk'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#barraponto%40gmail.com/gmail.B4BE8C17'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#belem09'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#gama.puraque'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#iuriguilherme'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#presto.correa'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#cravista'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#doceafagonanuca'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#angelina'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#AoEO3oA'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#m4r10n'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hj4adj'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#caioc2'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#prestoppc_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#v1z_____'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#leosimoes'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#gonzo__'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#belenzinho1'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Rafaman'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#cibeleborg'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#rck'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Guest31006'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#renato.fabbri'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hybrid_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#paulordbm'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#v1z____'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#humannoise_janta'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#iSnowBall'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#witness'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#zAoEO3oAz'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#________________'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#anonymous'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#aleij'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#cR4v0'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#guilherme.rk%40gmail.com/8E24EAB9'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Ims0iniA'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#__YupanaKernel__'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Manjaro'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#presto.correa%40gmail.com/android_talk9bbb29508'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#mancha_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#glerm'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hiatobr'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#o0o0o__'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#tarrafa'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#patriciaferraz007%40gmail.com/gmail.904A38A1'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#rfabbri%40gmail.com/gmail.A4063E2C'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#kraven'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#identi.ca'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#kbsa'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#filter1'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#capo'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#automata_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#renato.fabbri%40gmail.com/gmail.906C687F'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#patriciaferraz007%40gmail.com/gmail.B4BD77BD'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#ol2lando'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#ongueiro'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#SrKaioh'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#v1z__'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#m4r-10ns'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hybrid__'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#ggdo_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#queen_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#renatogk'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#cravo_quilombola'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#jpmehl%40ethymos.com.br/gmail.9F07F856'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#ricabras%40gmail.com/gmail.904B2C94'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#liascava%40gmail.com/Adium9EE13DB7'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#atmt'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#adrianobf%40gmail.com/gmail.909438F0'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#fran_paizao'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#yasodara.cordova%40gmail.com/gmail.8C0CD943'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#leib999'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#patriciaferraz007%40gmail.com/gmail.90494DE8'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#cravelho1'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#monod'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#gabithume'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#lap01'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#psjr'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#angelina_'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#PedroBarata'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#joepie91'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#vilson%40void.cc/gmail.8C25809D'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#rgkttmsfrf'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#pliskin'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#b0ttt'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#sescBelenzinho'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#sephiohff8%40gmail.com/gmail.905F831B'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#lucas'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#audioh4ck'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#audi0h4ck'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#eah'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#ananse'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#liascava%40gmail.com/Adium38AE6743'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#bjonnh'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Aderbal'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#prestopppc'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#organismo%40gmail.com/gmail.90B01A72'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#paloma'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#lalenia'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#fdeSanca'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#hiatobr1'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#lacRavoLenia'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Thibo'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#prestoppc_mob'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#rfabbri'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#coletivo'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#banzidro'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#aurium%40gmail.com/COLIVRED6CC94B6'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#casanova'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#daniel%40teia.org.br/gmail.8F8166F9'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#rfabbri%40gmail.com/gmail.AE0111DD'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#oNickOuAnonimo'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#adr___'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#tibiriba'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#b1O83R'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#gcravista%40gmail.com/gmail.9404F244'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#Mateus'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#ispmarin'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#dkajah%40gmail.com/gmail.97B278F3'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#g4%7C3i'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#tatoman'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#crash_demons'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#machado.felipe%40gmail.com/Adium0C26F93C'}},
{u'aname': {u'type': u'uri',
u'value': u'http://purl.org/socialparticipation/aa/User#gilsonbeck'}}]}}
In [ ]:
Content source: ttm/pnud3
Similar notebooks: